home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / OpenGL 1.0 SDK / Headers / aglContext.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-18  |  576 b   |  41 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        aglContext.h
  3.  
  4.     Version:    1.0
  5.  
  6.     Copyright:    © 1999 by Apple Computer, Inc., all rights reserved.
  7. */
  8.  
  9. #ifndef _AGLCONTEXT_H
  10. #define _AGLCONTEXT_H
  11.  
  12. #include "gliContext.h"
  13. #include "gliDispatch.h"
  14.  
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18.  
  19.  
  20. /*
  21. ** Opaque declaration for private AGLContext data.
  22. */
  23. typedef struct __AGLPrivateRec *AGLPrivate;
  24.  
  25. /*
  26. ** AGLContext structure.
  27. */
  28. struct __AGLContextRec {
  29.     GLIContext           rend;
  30.     GLIFunctionDispatch  disp;
  31.     GLIExtensionDispatch exts;
  32.     AGLPrivate           priv;
  33. };
  34.  
  35.  
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39.  
  40. #endif /* _AGLCONTEXT_H */
  41.